home *** CD-ROM | disk | FTP | other *** search
/ Aminet 4 / Aminet 4 - November 1994.iso / aminet / comm / net / drexxmail.lha / grnmailer.rexx < prev    next >
OS/2 REXX Batch file  |  1994-09-30  |  632b  |  24 lines

  1. /* Mailer.rexx - this is what gives our fudged sendmail the filename */
  2. /* version 3.00 by Rick Taylor, charlet@eng.clemson.edu              */
  3.  
  4. /* V2.00 - added drexxmail: to the sendmail.rexx path - Whoopie. :)  */
  5. /* V3.00 - No changes except for different names for GRn/ AmigaElm   */
  6.  
  7. /* GRn's */
  8.  
  9. options results
  10. address command
  11.  
  12. /* Let's grab that filename */
  13.  
  14. call open .Ffile,'t:grnrexxsendmail.name',read
  15. daname = readln(.Ffile)
  16. call close .Ffile
  17.  
  18. /* Now start up the actual program that sends our mail */
  19.  
  20. 'sys:rexxc/rx drexxmail:grnsendmail.rexx' daname
  21.  
  22. /* After that harrowing experience, let's close up shop. */
  23.  
  24. exit